home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / ErrorsBundle.java < prev    next >
Text File  |  1998-08-21  |  2KB  |  44 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ErrorsBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // LOCALIZE THIS
  11.  
  12.        { "InvalidBevelStyle",          "Invalid BevelStyle: " },
  13.        { "InvalidBevelSize",           "Invalid bevel size: " },
  14.        { "InvalidFrame",               "Invalid Frame: " },
  15.        { "InvalidDirection",           "Invalid direction: " },
  16.        { "InvalidArrowIndent",         "Invalid arrow indent: " },
  17.        { "ErrorLoadingImage",          "Error loading image {0}" },
  18.        { "InvalidImageStyle",          "Invalid image style: " },
  19.        { "ErrorLoadingImageForURL",    "Unable to load image for URL {0}" },
  20.        { "InvalidAlignStyle",          "Invalid AlignStyle: " },
  21.        { "InvalidVerticalAlignStyle",  "Invalid VerticalAlignStyle: " },
  22.        { "ElementAlreadyInMatrix",     "Element already in Matrix" },
  23.        { "ElementNotInMatrix",         "Element row={0} col={1} is not in matrix" },
  24.        { "RowNotInMatrix",             "Row {0} is not in the matrix" },
  25.        { "MustBeGreaterThanCurrentRow","r must be greater than current row: r={0} current row={1}" },
  26.        { "RowTooLarge",                "requested row too large: r={0}" },
  27.        { "InvalidRowNumber",           "{0} is not a valid row number" },
  28.        { "InvalidColumnIndex",         "Column out of range : " },
  29.        { "InvalidAlignment",           "{0} must be either {1}, {2}, or {3}" },
  30.        { "InvalidSelectedRadioButtonIndex", "Invalid SelectedRadioButtonIndex: " },
  31.        { "InvalidCurrentValue",        "Invalid current value: " },
  32.        { "InvalidMaxValue",            "Invalid max value: " },
  33.        { "InvalidMinValue",            "Invalid min value: " },
  34.        { "InvalidSplitType",           "Invalid SplitType: " },
  35.        { "NodeAlreadyExists",          "Node already exists in tree." },
  36.        { "EmptyStrings",               "Empty strings in structure." },
  37.        { "NoRootLevelNode",            "Indented nodes with no root level node." },
  38.        { "NoParent",                   "Node with no immediate parent.  Check indentation for: " },
  39.        { "InvalidTextLocation",        "Invalid text location: " },
  40.        { "NotCellObject",              "Objects to compare must be Cell instances" },
  41.  
  42.        // END "LOCALIZE THIS"
  43.    };
  44. }